home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue3 / Games / xrick / !xrick / include / h / scroller < prev    next >
Text File  |  2004-06-24  |  638b  |  30 lines

  1. /*
  2.  * xrick/include/scroller.h
  3.  *
  4.  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
  5.  *
  6.  * The use and distribution terms for this software are contained in the file
  7.  * named README, which can be found in the root of this distribution. By
  8.  * using this software in any fashion, you are agreeing to be bound by the
  9.  * terms of this license.
  10.  *
  11.  * You must not remove this notice, or any other, from this software.
  12.  */
  13.  
  14. #ifndef _SCROLLER_H
  15. #define _SCROLLER_H
  16.  
  17. #define SCROLL_RUNNING 1
  18. #define SCROLL_DONE 0
  19.  
  20. #define SCROLL_PERIOD 24
  21.  
  22. extern U8 scroll_up(void);
  23. extern U8 scroll_down(void);
  24.  
  25. #endif
  26.  
  27. /* eof */
  28.  
  29.  
  30.